home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / emula / arosdv19.lha / AROS / Demos / helloworld.c < prev    next >
C/C++ Source or Header  |  1996-10-24  |  489b  |  21 lines

  1. /*
  2.     (C) 1995-96 AROS - The Amiga Replacement OS
  3.     $Id: helloworld.c,v 1.3 1996/09/17 16:43:00 digulla Exp $
  4.     $Log: helloworld.c,v $
  5.     Revision 1.3  1996/09/17 16:43:00  digulla
  6.     Use general startup code
  7.  
  8.     Revision 1.2  1996/08/01 17:40:44  digulla
  9.     Added standard header for all files
  10.  
  11.     Desc: most simple demo for AROS
  12.     Lang: english
  13. */
  14. #include <clib/dos_protos.h>
  15.  
  16. int main (int argc, char ** argv)
  17. {
  18.     Write (Output (), "hello, world\n", 13);
  19.     return 0;
  20. }
  21.